.post_main {
    width: 75vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Suit';
    padding-top: 8vw;
    padding-bottom: 12vw;
}
.post_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vw;
}
.post_top_left {
    font-weight: 500;
}
.post_write_btn {
    width: 9.375vw;
    height: 3.5938vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #006290;
    border-radius: 50vw;
    color: #fff;
    font-size: var(--size-20);
    font-family: 'pretendard Variable';
    font-weight: 500;
    cursor: pointer;
}
.post_th {
    height: 3.8542vw;
    border-top: 2px solid #191414;
    border-bottom: 2px solid #191414;
    font-weight: 700;
    font-size: var(--size-18);
}
.post_tbody {
    font-size: var(--size-16);
    font-weight: 500;
}
.post_tr {
    height: 3.0208vw;
    border-bottom: 1px solid #19141434;
    cursor: pointer;
}
.post_tr:hover {
    text-decoration: underline;
}
.post_td {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.post_td01 { width: 10%; }
.post_td02 { width: 15%; }
.post_td03 { width: 60%; }
.post_td04 { width: 15%; }
.post_tbody .post_td02 {
    color: #006290;
    font-weight: 700;
}
.post_tbody .post_td03 {
    justify-content: flex-start;
    padding: 0 4vw;
}
.post_tbody .post_td03 p {
    max-width: 92%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post_new_icon {
    width: 1.198vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1%;
}
.post_lock {
    width: 0.7813vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1.3%;
}
/* 페이지네이션 */
.post_page {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5vw;
    gap: 2vw;
}
.post_arr {
    width: 0.694544%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.post_page_tt {
    font-size: var(--size-15);
    cursor: pointer;
    color: #9E9E9E;
    font-weight: 500;
}
.post_page_num_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--size-16);
    font-family: 'pretendard Variable';
    gap: 0.6vw;
}
.post_page_num_wrap span { cursor: pointer; }
.post_page_num_wrap span.post_change {
    font-weight: 600;
    color: #006290;
}
.post_next { transform: rotateY(180deg); }
/* 페이지네이션 끝 */
.post_search {
    margin-top: 3.5vw;
    width: 30.4688vw;
    height: 3.5938vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #CDC3C3;
    border-radius: 50vw;
}
.post_search_input {
    width: 84%;
    height: 100%;
    border: none;
    outline: none;
    font-weight: 600;
    font-family: 'pretendard Variable';
    font-size: var(--size-17);
    color: #191414;
}
.post_search_input::placeholder { color: #191414; }
.post_search_btn {
    width: 4.78642%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media screen and (max-width:599px) {
    .post_main {
        width: 93vw;
        padding-top: 15vw;
        padding-bottom: 26vw;
    }
    .post_write_btn {
        width: 22.375vw;
        height: 8.5938vw;
        font-size: var(--size-20);
    }
    .post_th {
        height: 12.8542vw;
        font-size: var(--size-18);
    }
    .post_tr { height: 12.0208vw; }
    .post_tbody .post_td03 p { max-width: 85%; }
    .post_new_icon { width: 3.198vw; }
    .post_lock { width: 2.7813vw; }
    .post_arr { width: 2.3%; }
    .post_page { margin-top: 7vw; gap: 4vw; }
    .post_page_num_wrap { gap: 2.6vw; }
    .post_search {
        margin-top: 11.5vw;
        width: 67.4688vw;
        height: 9.5938vw;
    }
    .header_quick { display: none !important; }
}
